- 新建Flask项目。
- 设置调试模式。
- 理解Flask项目主程序。
- 使用装饰器,设置路径与函数之间的关系。
- 使用Flask中render_template,用不同的路径,返回首页、登录员、注册页。
- 用视图函数反转得到URL,{ {url_for(‘login’)}},完成导航条里的链接。
Hogwarts
登录 欢迎登陆
用户名:密码:
注册 欢迎注册
输入用户名:输入密码:确认密码:
from flask import Flask,render_templateapp = Flask(__name__)@app.route('/')def first(): return render_template('first.html')@app.route('/sign_up/',methods=['GET','POST'])def sign_up(): return render_template('sign_up.html')@app.route('/sign_in/')def sign_in(): return render_template('sign_in.html')if __name__ == '__main__': app.run()